[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 CONFUNFLAG IEXP1,IEXP2

 Function
  Clear (turn off) flags specified by IEXP2 in conference IEXP1 for the
  current user.

 Syntax
  CONFUNFLAG confnum,flags

   confnum   - An integer expression containing the conference number to
               affect.
   flagsAn   - integer expression containing the flags to clear.

 Remarks
  Each user on the BBS has a set of five flags for each conference that
  control various settings.  These flags control the users registration
  in a conference, their expired status in a conference, whether or not
  they have a conference selected, whether or not they have mail waiting
  in a conference, and whether or not they have SysOp priviledges in a
  conference.  Any or all of these flags may be cleared at once.  To assist
  you in using this statement, five predefined constants are available to
  specify each flag:

    F_EXP       Expired subscription access allowed flag
    F_MW        Mail waiting flag
    F_REG       Registered access allowed flag
    F_SEL       Conference selected flag
    F_SYS       Conference SysOp access flag

  To use these flag constants simply add the ones you need together.

 Examples
  ' Automatically deregister them from selected conferences
  INTEGER i
  FOR i = 1 TO 10
    CONFUNFLAG i,F_REG+F_EXP+F_SEL
  NEXT
  FOR i = 11 TO 20
    CONFUNFLAG i,F_REG+F_SEL
  NEXT

See Also: CONFFLAG F_EXP F_MW F_REG F_SEL F_SYS
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson